home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2001 December / pcwk12201b.iso / Wersje pelne i specjalne / Winamp 2.77 i 3.0beta / wa3install_beta1.exe / Skins / Default.wal / Scripts / cfgbool.m next >
Encoding:
Text File  |  2001-10-01  |  412 b   |  21 lines

  1. #include "../../../lib/std.mi"
  2.  
  3. Global Text txt;
  4. Global ToggleButton tgbutton;
  5. Global CfgGroup cgroup;
  6.  
  7. System.onScriptLoaded() {
  8.   cgroup = getScriptGroup();
  9.   txt = cgroup.getObject("cfg.txt");
  10.   tgbutton = cgroup.getObject("cfg.toggle");
  11. }
  12.  
  13. tgbutton.onToggle(int on) {
  14.   cgroup.cfgSetInt(on);
  15. }
  16.  
  17. cgroup.onCfgChanged() {
  18.   txt.setText(cfgGetName());
  19.   tgbutton.setActivated(cfgGetInt());
  20. }
  21.